iT邦幫忙

第 11 屆 iThome 鐵人賽

DAY 5
0
自我挑戰組

Daily Coding!一日一刷題系列 第 5

Day04|Codewars 刷題日 (3)

  • 分享至 

  • xImage
  •  

今天跑去跳韓舞,
好久沒有一次跳四小,
覺得骨頭都快散掉了qwq

而且今天也解不了好多題,
只能找些簡單的拿來放了(跪

6.kyu Bit Counting

Write a function that takes an integer as input, and returns the number of bits that are equal to one in the binary representation of that number. You can guarantee that input is non-negative.

Example: The binary representation of 1234 is 10011010010, so the function should return 5 in this case

就是乖乖使用 python 裡面的 bin() 方法可以直接將數字轉成二進制字串,
雖然前方有 '0b' 開頭,
但不影響題目中所要求的 '1' 的數量~

def countBits(n):
    return bin(n).count('1')

另一題我會盡快補上qwq


上一篇
Day03|Codewars 刷題日 (2)
下一篇
Day05|Codewars 刷題日 (4)
系列文
Daily Coding!一日一刷題7
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言